home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-10-11 | 965 b | 34 lines | [TEXT/MPS ] |
- // Copyright © 1995 Apple Computer, Inc. All rights reserved.
- // Release Version: $ 1.0 d11 $
-
- #ifndef _SAMPLEFRAME_
- #define _SAMPLEFRAME_
-
- //=======================================================================
- // ----- Framework Includes -----
- #ifndef FWFRAME_H
- #include <FWFrame.h> // FW_CFrame
- #endif
-
- //=======================================================================
- class FW_CLASS_ATTR CSamplePart;
- class FW_CLASS_ATTR FW_CMenuEvent;
-
- //=======================================================================
- class FW_CLASS_ATTR CSampleFrame : public FW_CFrame {
- public:
- CSampleFrame(Environment* ev,
- ODFrame* odFrame,
- FW_CPresentation* presentation,
- CSamplePart* samplePart);
- virtual ~CSampleFrame();
- protected:
- // overrides
- virtual void Draw(Environment *ev,
- ODFacet* odFacet,
- ODShape* invalidShape);
- };
-
- //=======================================================================
- #endif
-